home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / MacHacksBug / Python 1.5.2c1 / Mac / Tools / macfreeze / hello / hello.py
Encoding:
Text File  |  2000-06-23  |  95 b   |  6 lines

  1. import sys
  2.  
  3. print 'Hello world'
  4. print 'Builtin modules:', sys.builtin_module_names
  5. sys.exit(1)
  6.